home *** CD-ROM | disk | FTP | other *** search
- #
- # AIX1/options.mk --- part of Makefile, defines compiler options for AIX 1.2
- #
-
- # The IBM compiler compiles pfe, but the result doesn't run (`longjmp botch'
- # whatever that means). I didn't find the ancient system worth the effort to
- # find out why yet.
- # With gcc specifying -Wall causes lots of warnings from the header files.
-
- PREFIX = /usr/local
- PFELIB = $(PREFIX)/lib/pfe
- PFEHLP = $(PFELIB)/help
-
- SYSTEM = AIX1
-
- CC = gcc -pipe
- OPTIM = -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
- DEBUG = -g -O
-
- CL = $(CC)
- CPP = $(CC) -E
- OPTIONS = -DHAVE_SELECT
- STRIP = -s
- TERM_O = termunix$o
- SYS_O = unix$o
- LFLAGS =
- LIBS = -lcurses -lm
-
-
-